home *** CD-ROM | disk | FTP | other *** search
- Unit HitchHikerImport;
- interface
- uses
- Types, XSBuiltIns;
-
- type
- IHitchHiker = interface(IInvokable)
- ['{E325004C-3203-482D-95F8-30D0286C68DC}']
- function TheAnswer: Integer; stdcall;
- function TheQuestion: WideString; stdcall;
- end;
-
- implementation
- uses
- InvokeRegistry;
-
- initialization
- InvRegistry.RegisterInterface(TypeInfo(IHitchHiker), 'urn:HitchHiker-IHitchHiker', '');
- end.
-